23789
67
Eu tenho uma lista de Orderedict como segue
list1 = [OrderedDict ([('Números', '15'), ('FirstName', 'John'), ('SecondName', 'Raul'), ('MiddleName', 'Kyle'), ('Grade' , 22)]),
OrderedDict ([('Names', 'John'), ('NewFirstName', 'Mark'), ('NewSecondName', 'Sachel'), ('NewThirdName', 'Raul'), ('Grade', 15) ]),
OrderedDict ([('Números', '25'), ('FirstName', 'Kyle'), ('SecondName', 'Venn'), ('MiddleName', 'Marcus'), ('Grade', 24) ]),
OrderedDict ([('Names', 'Sachel'), ('NewFirstName', 'Venn'), ('NewSecondName', 'Kyle'), ('NewThirdName', 'John'), ('Grade', 71) ])]
Existem 8 chaves exclusivas e uma chave comum, gostaria de criar uma tabela a partir dela no kivy com a mesma ordem, com as chaves sendo o cabeçalho da tabela. Minha saída esperada é a seguinte, sou novo no ecossistema kivy e não vejo nada parecido com tableview nisso, qualquer outra visualização poderia ser usada para obter esta saída e como
Produção esperada em kivy
Peguei o exemplo de visualização reciclado mais simples dado no comentário e editei o número das colunas para 9 e tentei escolher os valores de Ordereddict e obtive a saída abaixo, já que sou novo no kivy, não tenho certeza de puxar os valores como esperado resultado
Abaixo estão os arquivos .py e .kv
check.py
do aplicativo kivy.app import
de kivy.uix.boxlayout import BoxLayout
de kivy.uix.recycleview.views import RecycleDataViewBehavior
from kivy.uix.button import Button
from kivy.properties import BooleanProperty, ListProperty, StringProperty, ObjectProperty
de kivy.uix.recyclegridlayout import RecycleGridLayout
de kivy.uix.behaviors import FocusBehavior
de kivy.uix.recycleview.layout import LayoutSelectionBehavior
de kivy.uix.popup importar Popup
das coleções importar OrderedDict
list1 = [OrderedDict ([('Números', '15'), ('FirstName', 'John'), ('SecondName', 'Raul'), ('MiddleName', 'Kyle'), ('Grade' , 22)]),
OrderedDict ([('Names', 'John'), ('NewFirstName', 'Mark'), ('NewSecondName', 'Sachel'), ('NewThirdName', 'Raul'), ('Grade', 15) ]),
OrderedDict ([('Números', '25'), ('FirstName', 'Kyle'), ('SecondName', 'Venn'), ('MiddleName', 'Marcus'), ('Grade', 24) ]),
OrderedDict ([('Names', 'Sachel'), ('NewFirstName', 'Venn'), ('NewSecondName', 'Kyle'), ('NewThirdName', 'John'), ('Grade', 71) ])]
classe TextInputPopup (Popup):
obj = ObjectProperty (Nenhum)
obj_text = StringProperty ("")
def __init __ (self, obj, ** kwargs):
super (TextInputPopup, self) .__ init __ (** kwargs)
self.obj = obj
self.obj_text = obj.text
class SelectableRecycleGridLayout (FocusBehavior, LayoutSelectionBehavior,
RecycleGridLayout):
'' 'Adiciona seleção e comportamento de foco à visualização. '' '
class SelectableButton (RecycleDataViewBehavior, Button):
'' 'Adicionar suporte de seleção ao Botão' ''
índice = Nenhum
selecionado = BooleanProperty (False)
selectable = BooleanProperty (True)
def refresh_view_attrs (self, rv, index, data):
'' 'Capture e controle as mudanças de visualização' ''
self.index = index
return super (SelectableButton, self) .refresh_view_attrs (rv, index, data)
def on_touch_down (self, touch):
'' 'Adicionar seleção ao tocar' ''
if super (SelectableButton, self) .on_touch_down (touch):
retornar verdadeiro
se self.collide_point (* touch.pos) e self.selectable:
return self.parent.select_with_touch (self.index, touch)
def apply_selection (self, rv, index, is_selected):
'' 'Responde à seleção de itens na visualização. '' '
self.selected = is_selected
def on_press (self):
popup = TextInputPopup (self)
popup.open ()
def update_changes (self, txt):
self.text = txt
classe RV (BoxLayout):
# data_items = ListProperty (nova lista)
data_items = ListProperty ([])
def __init __ (self, ** kwargs):
super (RV, próprio) .__ init __ (** kwargs)
self.get_users ()
def get_users (self):
# create data_items
para i na lista1:
self.data_items.append (i.values ​​())
classe TestApp (App):
title = "Kivy RecycleView & SQLite3 Demo"
def build (self):
return RV ()
if __name__ == "__main__":
TestApp (). Run ()
test.kv
#: kivy 1.10.0
:
título: "Popup"
size_hint: Nenhum, Nenhum
tamanho: 400, 400
auto_dismiss: False
BoxLayout:
orientação: "vertical"
TextInput:
id: txtinput
texto: root.obj_text
Botão:
size_hint: 1, 0,2
texto: "Salvar alterações"
on_release:
root.obj.update_changes (txtinput.text)
root.dismiss ()
Botão:
size_hint: 1, 0,2
texto: "Cancelar alterações"
on_release: root.dismiss ()
:
# Desenhe um fundo para indicar a seleção
canvas.before:
Cor:
rgba: (.0, 0.9, .1, .3) se self.selected else (0, 0, 0, 1)
Retângulo:
pos: self.pos
size: self.size
:
BoxLayout:
orientação: "vertical"
GridLayout:
size_hint: 1, Nenhum
size_hint_y: Nenhum
altura: 25
cols: 9
Rótulo:
texto: "Números"
Rótulo:
texto: "FirstName"
Rótulo:
texto: "SecondName"
Rótulo:
texto: "MiddleName"
Rótulo:
texto: "Nota"
Rótulo:
texto: "Nomes"
Rótulo:
texto: "NewFirstName"
Rótulo:
texto: "NewSecondName"
Rótulo:
texto: "NewThirdName"
BoxLayout:
RecycleView:
viewclass: 'SelectableButton'
dados: [{'text': str (x)} para x em root.data_items]
SelectableRecycleGridLayout:
cols: 9
tamanho_padrão: Nenhum, dp (26)
default_size_hint: 1, Nenhum
size_hint_y:Nenhum
height: self.minimum_height
orientação: 'horizontal'
multiselect: True
touch_multiselect: Verdadeiro 
Pergunta - TableView
Existem 8 chaves únicas e uma chave comum, gostaria de
crie uma mesa a partir dele no kivy com a mesma ordem, com as chaves sendo
o cabeçalho da tabela.
Solução - Usando Kivy RecycleView
Modifique o aplicativo para extrair as chaves e os valores das coleções.OrderedDict
Adicione um atributo de classe do tipo ListProperty, por exemplo column_headings = ListProperty ([])
Implemente o loop for aninhado para extrair chaves ou títulos de coluna
Implementar loop for aninhado para extrair valores
Substituir Nenhum por string vazia
Trechos
classe RV (BoxLayout):
column_headings = ListProperty ([])
data_items = ListProperty ([])
def __init __ (self, ** kwargs):
super (RV, próprio) .__ init __ (** kwargs)
self.get_users ()
def get_users (self):
# extrai chaves ou cabeçalhos de coluna
para a linha na lista1:
para a chave em row.keys ():
se a chave não estiver em self.column_headings:
self.column_headings.append (chave)
# extrair valores
valores = []
para a linha na lista1:
para chave em self.column_headings:
experimentar:
values.append (str (linha [chave]))
del row [chave]
exceto KeyError:
values.append (Nenhum)
# substitua nenhum por string vazia
self.data_items = ['' if x for None else x for x in values]
Resultado
|
sua resposta
StackExchange.ifUsing ("editor", function () {
StackExchange.using ("externalEditor", function () {
StackExchange.using ("snippets", function () {
StackExchange.snippets.init ();
});
});
}, "partes de codigo");
StackExchange.ready (function () {
var channelOptions = {
tags: "" .split (""),
id: "1"
};
initTagRenderer ("". split (""), "" .split (""), channelOptions);
StackExchange.using ("externalEditor", function () {
// Tem que disparar o editor após os snippets, se os snippets estiverem habilitados
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using ("snippets", function () {
createEditor ();
});
}
outro {
createEditor ();
}
});
function createEditor () {
StackExchange.prepareEditor ({
useStacksEditor: false,
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputaçãoToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by \ u003ca href = \" https: //imgur.com/ \ "\ u003e \ u003csvg class = \" svg-icon \ "width = \" 50 \ "height = \" 18 \ "viewBox = \ "0 0 50 18 \" fill = \ "none \" xmlns = \ "http: //www.w3.org/2000/svg \" \ u003e \ u003cpath d = \ "M46.1709 9.17788C46.1709 8.26454 46,2665 7,94324 47,1084 7,58816C47.4091 7,46349 47,7169 7,36433 48,0099 7,26993C48.9099 6,97997 49,672 6,73443 49,672 5,93063C49,672 5,22043 48,9832 4,61182 48,1414 4,61182C47,4335 4,26993C48.9099 6,97997 49,672 6,73443 49,672 5,93063C49,672 5,22043 48,9832 4,61182 48,1414 4,61182C47,4335 4,6431182 4,25.654,23,7623,74,6281 4,9281 467823,621 4,96281 4,9823,623,623,461,45,023,74,6281 4,9823,1623,623,14,6281 4,9282 C 4,9281 4,923,623,623,76,2 53,76,23,76,823,14,65,0281 4,928,023,623,14,65,0281 4,928,023,623. 43.1481 6.59048V11.9512C43.1481 13.2535 43.6264 13.8962 44.6595 13.8962C45.6924 13.8962 46.1709 13.2535 46.1709 11.9512V9.17788Z \ "/ \ u003e \ u003cpath d = \" M32.492 10.1439219 C32.492.492. 41.5985 12.6954 41.5985 10.1419V6.59049C41.5985 5.28821 41.1394 4.66232 40.1061 4.66232C39.0732 4.66232 38.5948 5.28821 38.5948 6.59049V9.60062C38.5948 10,85821 38.2696 11.5455 37.0454 11.520 11.545 11.5458.5948 5.28821 38.5455 11.5204 11.5204 11.5204 11.5458 11.5458. 521 35.4954 9.60062V6.59049C35.4954 5.28821 35.0173 4.66232 34.0034 4.66232C32.9703 4.66232 32.492 5.28821 32.492 6.59049V10.1419Z \ "/ \ u003e \ u003cpath fill-rule = \" evenodd \ "clip-rule = \" evenodd \ "clip-rule = ” .1369 4.56087 21.0134 6.57349 21.0134 9.27932C21.0134 11.9852 23.003 13,913 25.3754 13.913C26.5612 13,913 27.4607 13.4902 28.1109 12.6616C28.1109 12.7229 28.1161 12.7799 28.779 28.121 12.8346C 25.3754 13.913C26.5612 13,913 27.4607 13.4902 28.1109 12.6616C28.1109 12.7229 28.1161 12.7799 28.7799 2877121 12.8346C 27.4607 13.4902. 15,2321 24,1352 14,9821 23,5661 14.7787C23.176 14,6393 22,8472 14,5218 22,5437 14.5218C21.7977 14,5218 21,2429 15,0123 21,2429 15.6887C21.2429 16,7375 22,9072 17,6335 25,6622 17.6335ZM24.1317 9.27932C24.1317 7,94324 24,9928 7,09766 26,1024 7.09766C 28,0918 7,94324 7,09766 27,2119 28,0918 9.27932C28.0918 10,6321 27,2311 11,5116 26,1024 11.5116C24.9737 11,5116 24,1317 10,6491 24,1317 9.27932Z \ "/ \ u003e \ u003cpath d = \" M16.8045 11.9512C16.8045 17,2637 13,8962 18,2965 13,2535 13,8962 13.8962C19.3298 19,8079 13,2535 19,8079 11.9512V8.12928C19.8079 5,82936 18,4879 4,62866 16,4027 4.62866C15.1594 4,62866 14,279 4,98375 13,3609 5.88013C12.653 5,05154 11,6581 4,62866 10,3573 4.62866C9.34336 4,62866 8,57809 4,89931 7,9466 5.5079C7.58314 4,9328 7,10506 4,66232 6,51203 4,66232 4.66232C5.47873 5,00066 5,28821 5,00066 6.59049V11.9512C5.00066 13,2535 5,47873 13,8962 6,51203 13.8962C7.54479 13,8962 8,0232 13,2535 8,0232 11.9512V8.90741C8.0232 7,58817 8,44431 6,91179 9,53458 6.91179C10.5104 6,91179 10,893 7,58817 10,893 8.94108V11.9512C10.893 13,2535 11,3711 13,8962 12,4044 13,8962 C13.4375 13.896213,9157 13,2535 13,9157 11,9512V8.90741C13,9157 7,58817 14,3365 6,91179 15,4269 6,91179C16.4027 6,91179 16,8045 7,58817 16,8045 8,94108V11.9512Z \ "/ \ u003e \ u003cpath d = 4,4269 6,91179C16.4027 6,91179 16,8045 7,58817 16,8045 8,94108V11.9512Z \" / \ u003e \ u003cpath d = 4,571,34666,34 6,571 8,66 8 6,56 8 6,56 8 6,5168 6,56 8 6,56 8 6,56 8 6 6 8 8 6 8 6 6 8 6 6 8 6 8 6 6 8 6 6 8 6 8662 791758 4,66232 0,313354 5,28821 0,313354 0,791758 13,8962 13,2535 6.59049V11.9512C0.313354 1,82471 13.8962C2.85798 13,8962 3,31675 13,2535 3,31675 11.9512V6.59049Z \ "/ \ u003e \ u003cpath d = \" M1.87209 0.400291C0.843612 0,400291 0 1,1159 0 1,98861 C0 2,87869 0,822846 3,57676 1,87209 3,57676C2,90056 3,57676 3,7234 2,87869 3,7234 1,98861C3.7234 1,1159 2,90056 0,400291 1,87209 0,400291Z \ "fill = \" # 1BB76E \ "/ \ u003e \ u003c / svg \ u003e"
contentPolicyHtml: "Contribuições do usuário licenciadas sob \ u003ca href = \" https: //stackoverflow.com/help/licensing \ "\ u003ecc by-sa \ u003c / a \ u003e \ u003ca href = \" https://stackoverflow.com / legal / content-policy \ "\ u003e (política de conteúdo) \ u003c / a \ u003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
, imediatamenteShowMarkdownHelp: true, enableTables: true, enableSnippets: true
});
}
});
Obrigado por contribuir com uma resposta para Stack Overflow!
Certifique-se de responder à pergunta. Forneça detalhes e compartilhe sua pesquisa!
Mas evite ...
Pedir ajuda, esclarecimento ou responder a outras respostas.
Fazer declarações com base em opinião; apoie-os com referências ou experiência pessoal.
Para saber mais, veja nossas dicas sobre como escrever boas respostas.
Rascunho salvo
Rascunho descartado
Cadastre-se ou faça o login
StackExchange.ready (function () {
StackExchange.helpers.onClickDraftSave ('# login-link');
});
Inscreva-se usando o Google
Cadastre-se usando o Facebook
Inscreva-se usando e-mail e senha
Enviar
Postar como convidado
Nome
O email
Obrigatório, mas nunca mostrado
StackExchange.ready (
function () {
StackExchange.openid.initPostLogin ('. New-post-login', 'https% 3a% 2f% 2fstackoverflow.com% 2fquestions% 2f56113713% 2fdisplay-list-of-Order-in-kivy% 23nova-resposta', 'question_page' );
}
);
Postar como convidado
Nome
O email
Obrigatório, mas nunca mostrado
Publique a sua resposta
Descartar
Ao clicar em “Publique sua resposta”, você concorda com nossos termos de serviço, política de privacidade e política de cookies
Não é a resposta que você está procurando? Navegue por outras questões com a tag python kivy ou faça sua própria pergunta.